id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Variablesfloor_division1

prev  |  next  |  chance

Determine the value returned by the function.

def f_div(w, z):
    result = w // z
    return result
Function Call  Return Value
f_div(2, 2)
f_div(5, 2)
f_div(20, 3)
f_div(6, 4)
f_div(3, 5)
f_div(22, 3)
f_div(18, 5)

Experiment with this code on Gitpod.io

⬅ Back